home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992…ugust: Hack to the Future / ADC Developer CD (1992-08) (''Hack To The Future'')_iso / Dev.CD 199208.iso / Periodicals / develop / develop 10 code / GWorld Drawing / GWorld Routines / xform bitmap.h < prev   
Encoding:
C/C++ Source or Header  |  1992-04-08  |  152 b   |  9 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. typedef short shortFrac;
  4.  
  5. #define    oneShortFrac            (1 << 14)
  6. #define    halfShortFrac            (1 << 13)
  7. #define     Fixed2ShortFrac(x)        ((x) + 2 >> 2)
  8.  
  9.